home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / regex.0 < prev    next >
Text File  |  1996-09-02  |  20KB  |  463 lines

  1.  
  2.  
  3.  
  4. REGEX(3)                                                 REGEX(3)
  5.  
  6.  
  7. NNAAMMEE
  8.        regcomp,  regexec,  regerror, regfree - regular-expression
  9.        library
  10.  
  11. SSYYNNOOPPSSIISS
  12.        ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  13.        ##iinncclluuddee <<rreeggeexx..hh>>
  14.  
  15.        int      regcomp(regex_t *preg,       const char *pattern,
  16.                  int cflags);
  17.  
  18.        int regexec(const regex_t *preg,       const char *string,
  19.                  size_t nmatch, regmatch_t pmatch[], int eflags);
  20.  
  21.        size_t regerror(int errcode,          const regex_t *preg,
  22.                  char *errbuf, size_t errbuf_size);
  23.  
  24.        void regfree(regex_t *preg);
  25.  
  26. DDEESSCCRRIIPPTTIIOONN
  27.        These routines implement POSIX 1003.2 regular  expressions
  28.        (``RE''s); see _r_e___f_o_r_m_a_t(7)_.  _R_e_g_c_o_m_p compiles an RE writ-
  29.        ten as a string into an  internal  form,  _r_e_g_e_x_e_c  matches
  30.        that  internal  form against a string and reports results,
  31.        _r_e_g_e_r_r_o_r transforms error codes from  either  into  human-
  32.        readable  messages,  and  _r_e_g_f_r_e_e  frees  any dynamically-
  33.        allocated storage used by the internal form of an RE.
  34.  
  35.        The header _<_r_e_g_e_x_._h_> declares two structure types, _r_e_g_e_x___t
  36.        and _r_e_g_m_a_t_c_h___t, the former for compiled internal forms and
  37.        the latter for match reporting.  It also declares the four
  38.        functions, a type _r_e_g_o_f_f___t, and a number of constants with
  39.        names starting with ``REG_''.
  40.  
  41.        _R_e_g_c_o_m_p compiles the regular expression contained  in  the
  42.        _p_a_t_t_e_r_n string, subject to the flags in _c_f_l_a_g_s, and places
  43.        the results in the _r_e_g_e_x___t structure pointed to  by  _p_r_e_g.
  44.        _C_f_l_a_g_s  is the bitwise OR of zero or more of the following
  45.        flags:
  46.  
  47.        REG_EXTENDED  Compile modern  (``extended'')  REs,  rather
  48.                      than  the  obsolete (``basic'') REs that are
  49.                      the default.
  50.  
  51.        REG_BASIC     This is a synonym for 0, provided as a coun-
  52.                      terpart to REG_EXTENDED to improve readabil-
  53.                      ity.
  54.  
  55.        REG_NOSPEC    Compile  with  recognition  of  all  special
  56.                      characters  turned  off.  All characters are
  57.                      thus considered ordinary, so the ``RE'' is a
  58.                      literal  string.  This is an extension, com-
  59.                      patible with  but  not  specified  by  POSIX
  60.                      1003.2,  and  should be used with caution in
  61.  
  62.  
  63.  
  64.                           March 20, 1994                        1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. REGEX(3)                                                 REGEX(3)
  71.  
  72.  
  73.                      software intended to be  portable  to  other
  74.                      systems.   REG_EXTENDED  and  REG_NOSPEC may
  75.                      not be used in the same call to _r_e_g_c_o_m_p.
  76.  
  77.        REG_ICASE     Compile   for    matching    that    ignores
  78.                      upper/lower    case    distinctions.     See
  79.                      _r_e___f_o_r_m_a_t(7)_.
  80.  
  81.        REG_NOSUB     Compile for matching that need  only  report
  82.                      success or failure, not what was matched.
  83.  
  84.        REG_NEWLINE   Compile  for newline-sensitive matching.  By
  85.                      default, newline is  a  completely  ordinary
  86.                      character  with no special meaning in either
  87.                      REs  or  strings.   With  this  flag,   `[^'
  88.                      bracket expressions and `.' never match new-
  89.                      line, a `^' anchor matches the  null  string
  90.                      after  any newline in the string in addition
  91.                      to its normal function, and the  `$'  anchor
  92.                      matches  the  null string before any newline
  93.                      in the string  in  addition  to  its  normal
  94.                      function.
  95.  
  96.        REG_PEND      The  regular  expression  ends,  not  at the
  97.                      first NUL, but  just  before  the  character
  98.                      pointed  to  by  the  _r_e___e_n_d_p  member of the
  99.                      structure pointed to by _p_r_e_g.   The  _r_e___e_n_d_p
  100.                      member  is  of type _c_o_n_s_t _c_h_a_r _*.  This flag
  101.                      permits inclusion of NULs in  the  RE;  they
  102.                      are considered ordinary characters.  This is
  103.                      an extension, compatible with but not speci-
  104.                      fied  by  POSIX  1003.2,  and should be used
  105.                      with caution  in  software  intended  to  be
  106.                      portable to other systems.
  107.  
  108.        When successful, _r_e_g_c_o_m_p returns 0 and fills in the struc-
  109.        ture pointed to by _p_r_e_g.  One  member  of  that  structure
  110.        (other  than  _r_e___e_n_d_p)  is  publicized:  _r_e___n_s_u_b,  of type
  111.        _s_i_z_e___t, contains the number  of  parenthesized  subexpres-
  112.        sions  within the RE (except that the value of this member
  113.        is undefined if the REG_NOSUB flag was used).  If  _r_e_g_c_o_m_p
  114.        fails,  it returns a non-zero error code; see DIAGNOSTICS.
  115.  
  116.        _R_e_g_e_x_e_c matches the compiled RE pointed to by _p_r_e_g against
  117.        the  _s_t_r_i_n_g,  subject  to the flags in _e_f_l_a_g_s, and reports
  118.        results using _n_m_a_t_c_h, _p_m_a_t_c_h, and the returned value.  The
  119.        RE  must  have  been  compiled by a previous invocation of
  120.        _r_e_g_c_o_m_p.  The compiled form is not altered  during  execu-
  121.        tion  of  _r_e_g_e_x_e_c,  so  a  single  compiled RE can be used
  122.        simultaneously by multiple threads.
  123.  
  124.        By default, the NUL-terminated string pointed to by _s_t_r_i_n_g
  125.        is  considered to be the text of an entire line, minus any
  126.        terminating newline.  The _e_f_l_a_g_s argument is  the  bitwise
  127.  
  128.  
  129.  
  130.                           March 20, 1994                        2
  131.  
  132.  
  133.  
  134.  
  135.  
  136. REGEX(3)                                                 REGEX(3)
  137.  
  138.  
  139.        OR of zero or more of the following flags:
  140.  
  141.        REG_NOTBOL    The first character of the string is not the
  142.                      beginning of  a  line,  so  the  `^'  anchor
  143.                      should  not  match before it.  This does not
  144.                      affect  the  behavior  of   newlines   under
  145.                      REG_NEWLINE.
  146.  
  147.        REG_NOTEOL    The  NUL terminating the string does not end
  148.                      a line, so the `$' anchor should  not  match
  149.                      before  it.  This does not affect the behav-
  150.                      ior of newlines under REG_NEWLINE.
  151.  
  152.        REG_STARTEND  The  string  is  considered  to   start   at
  153.                      _s_t_r_i_n_g +  _p_m_a_t_c_h[0]._r_m___s_o and to have a ter-
  154.                      minating    NUL    located    at    _s_t_r_i_n_g +
  155.                      _p_m_a_t_c_h[0]._r_m___e_o  (there need not actually be
  156.                      a NUL at that location), regardless  of  the
  157.                      value  of _n_m_a_t_c_h.  See below for the defini-
  158.                      tion of  _p_m_a_t_c_h  and  _n_m_a_t_c_h.   This  is  an
  159.                      extension, compatible with but not specified
  160.                      by POSIX 1003.2, and  should  be  used  with
  161.                      caution  in software intended to be portable
  162.                      to other  systems.   Note  that  a  non-zero
  163.                      _r_m___s_o    does    not    imply    REG_NOTBOL;
  164.                      REG_STARTEND affects only  the  location  of
  165.                      the string, not how it is matched.
  166.  
  167.        See  _r_e___f_o_r_m_a_t(7)  for  a discussion of what is matched in
  168.        situations where an RE or a portion  thereof  could  match
  169.        any of several substrings of _s_t_r_i_n_g.
  170.  
  171.        Normally,  _r_e_g_e_x_e_c  returns 0 for success and the non-zero
  172.        code REG_NOMATCH for failure.  Other non-zero error  codes
  173.        may  be  returned  in exceptional situations; see DIAGNOS-
  174.        TICS.
  175.  
  176.        If REG_NOSUB was specified in the compilation of  the  RE,
  177.        or  if  _n_m_a_t_c_h  is  0, _r_e_g_e_x_e_c ignores the _p_m_a_t_c_h argument
  178.        (but see below for the case where REG_STARTEND  is  speci-
  179.        fied).   Otherwise,  _p_m_a_t_c_h  points  to an array of _n_m_a_t_c_h
  180.        structures of type _r_e_g_m_a_t_c_h___t.  Such a  structure  has  at
  181.        least  the  members _r_m___s_o and _r_m___e_o, both of type _r_e_g_o_f_f___t
  182.        (a signed arithmetic type at least as large  as  an  _o_f_f___t
  183.        and  a _s_s_i_z_e___t), containing respectively the offset of the
  184.        first character of a substring and the offset of the first
  185.        character  after  the  end  of the substring.  Offsets are
  186.        measured from the beginning of the _s_t_r_i_n_g  argument  given
  187.        to  _r_e_g_e_x_e_c.   An empty substring is denoted by equal off-
  188.        sets, both indicating the character  following  the  empty
  189.        substring.
  190.  
  191.        The  0th  member of the _p_m_a_t_c_h array is filled in to indi-
  192.        cate what substring of _s_t_r_i_n_g was matched  by  the  entire
  193.  
  194.  
  195.  
  196.                           March 20, 1994                        3
  197.  
  198.  
  199.  
  200.  
  201.  
  202. REGEX(3)                                                 REGEX(3)
  203.  
  204.  
  205.        RE.   Remaining  members report what substring was matched
  206.        by parenthesized subexpressions within the  RE;  member  _i
  207.        reports   subexpression  _i,  with  subexpressions  counted
  208.        (starting at 1) by the order of their opening  parentheses
  209.        in  the  RE, left to right.  Unused entries in the array--
  210.        corresponding either to subexpressions that did  not  par-
  211.        ticipate in the match at all, or to subexpressions that do
  212.        not exist in the RE  (that  is,  _i >  _p_r_e_g->_r_e___n_s_u_b)--have
  213.        both  _r_m___s_o  and _r_m___e_o set to -1.  If a subexpression par-
  214.        ticipated in the match several times,  the  reported  sub-
  215.        string  is  the last one it matched.  (Note, as an example
  216.        in particular, that when the RE `(b*)+' matches `bbb', the
  217.        parenthesized subexpression matches each of the three `b's
  218.        and then an infinite number of empty strings following the
  219.        last  `b',  so  the  reported substring is one of the emp-
  220.        ties.)
  221.  
  222.        If REG_STARTEND is specified,  _p_m_a_t_c_h  must  point  to  at
  223.        least one _r_e_g_m_a_t_c_h___t (even if _n_m_a_t_c_h is 0 or REG_NOSUB was
  224.        specified), to hold the input  offsets  for  REG_STARTEND.
  225.        Use  for output is still entirely controlled by _n_m_a_t_c_h; if
  226.        _n_m_a_t_c_h is 0 or  REG_NOSUB  was  specified,  the  value  of
  227.        _p_m_a_t_c_h[0] will not be changed by a successful _r_e_g_e_x_e_c.
  228.  
  229.        _R_e_g_e_r_r_o_r  maps  a  non-zero _e_r_r_c_o_d_e from either _r_e_g_c_o_m_p or
  230.        _r_e_g_e_x_e_c to a human-readable, printable message.   If  _p_r_e_g
  231.        is non-NULL, the error code should have arisen from use of
  232.        the _r_e_g_e_x___t pointed to by _p_r_e_g, and if the error code came
  233.        from _r_e_g_c_o_m_p, it should have been the result from the most
  234.        recent _r_e_g_c_o_m_p using that _r_e_g_e_x___t.  (_R_e_g_e_r_r_o_r may be  able
  235.        to  supply  a more detailed message using information from
  236.        the _r_e_g_e_x___t.)  _R_e_g_e_r_r_o_r places the NUL-terminated  message
  237.        into  the buffer pointed to by _e_r_r_b_u_f, limiting the length
  238.        (including the NUL) to at most _e_r_r_b_u_f___s_i_z_e bytes.  If  the
  239.        whole  message won't fit, as much of it as will fit before
  240.        the  terminating  NUL  is  supplied.   In  any  case,  the
  241.        returned  value  is  the size of buffer needed to hold the
  242.        whole message (including terminating NUL).  If _e_r_r_b_u_f___s_i_z_e
  243.        is 0, _e_r_r_b_u_f is ignored but the return value is still cor-
  244.        rect.
  245.  
  246.        If the _e_r_r_c_o_d_e  given  to  _r_e_g_e_r_r_o_r  is  first  ORed  with
  247.        REG_ITOA,  the  ``message''  that results is the printable
  248.        name of the error code, e.g. ``REG_NOMATCH'', rather  than
  249.        an explanation thereof.  If _e_r_r_c_o_d_e is REG_ATOI, then _p_r_e_g
  250.        shall be non-NULL and the _r_e___e_n_d_p member of the  structure
  251.        it  points to must point to the printable name of an error
  252.        code; in this case, the result in _e_r_r_b_u_f  is  the  decimal
  253.        digits  of  the  numeric value of the error code (0 if the
  254.        name  is  not  recognized).   REG_ITOA  and  REG_ATOI  are
  255.        intended  primarily  as  debugging  facilities;  they  are
  256.        extensions, compatible with but  not  specified  by  POSIX
  257.        1003.2,  and  should  be  used  with  caution  in software
  258.        intended to be portable to other systems.  Be warned  also
  259.  
  260.  
  261.  
  262.                           March 20, 1994                        4
  263.  
  264.  
  265.  
  266.  
  267.  
  268. REGEX(3)                                                 REGEX(3)
  269.  
  270.  
  271.        that they are considered experimental and changes are pos-
  272.        sible.
  273.  
  274.        _R_e_g_f_r_e_e frees any dynamically-allocated storage associated
  275.        with  the  compiled  RE pointed to by _p_r_e_g.  The remaining
  276.        _r_e_g_e_x___t is no longer a valid compiled RE and the effect of
  277.        supplying it to _r_e_g_e_x_e_c or _r_e_g_e_r_r_o_r is undefined.
  278.  
  279.        None of these functions references global variables except
  280.        for tables of constants; all are safe for use from  multi-
  281.        ple threads if the arguments are safe.
  282.  
  283. IIMMPPLLEEMMEENNTTAATTIIOONN CCHHOOIICCEESS
  284.        There  are  a number of decisions that 1003.2 leaves up to
  285.        the implementor, either by explicitly saying ``undefined''
  286.        or  by  virtue  of them being forbidden by the RE grammar.
  287.        This implementation treats them as follows.
  288.  
  289.        See _r_e___f_o_r_m_a_t(7) for a discussion  of  the  definition  of
  290.        case-independent matching.
  291.  
  292.        There  is no particular limit on the length of REs, except
  293.        insofar as memory is limited.  Memory  usage  is  approxi-
  294.        mately  linear  in  RE size, and largely insensitive to RE
  295.        complexity, except for bounded repetitions.  See BUGS  for
  296.        one  short  RE  using them that will run almost any system
  297.        out of memory.
  298.  
  299.        A backslashed character other than one specifically  given
  300.        a  magic meaning by 1003.2 (such magic meanings occur only
  301.        in obsolete [``basic''] REs) is taken as an ordinary char-
  302.        acter.
  303.  
  304.        Any unmatched [ is a REG_EBRACK error.
  305.  
  306.        Equivalence classes cannot begin or end bracket-expression
  307.        ranges.  The endpoint of one range cannot begin another.
  308.  
  309.        RE_DUP_MAX, the limit on repetition counts in bounded rep-
  310.        etitions, is 255.
  311.  
  312.        A  repetition  operator (?, *, +, or bounds) cannot follow
  313.        another repetition operator.  A repetition operator cannot
  314.        begin an expression or subexpression or follow `^' or `|'.
  315.  
  316.        `|' cannot appear first or last in  a  (sub)expression  or
  317.        after  another  `|',  i.e.  an operand of `|' cannot be an
  318.        empty subexpression.  An  empty  parenthesized  subexpres-
  319.        sion, `()', is legal and matches an empty (sub)string.  An
  320.        empty string is not a legal RE.
  321.  
  322.        A `{' followed by a digit is considered the  beginning  of
  323.        bounds  for  a  bounded repetition, which must then follow
  324.        the syntax for bounds.  A `{' _n_o_t followed by a  digit  is
  325.  
  326.  
  327.  
  328.                           March 20, 1994                        5
  329.  
  330.  
  331.  
  332.  
  333.  
  334. REGEX(3)                                                 REGEX(3)
  335.  
  336.  
  337.        considered an ordinary character.
  338.  
  339.        `^'  and  `$' beginning and ending subexpressions in obso-
  340.        lete (``basic'') REs are anchors, not ordinary characters.
  341.  
  342. SSEEEE AALLSSOO
  343.        grep(1), re_format(7)
  344.  
  345.        POSIX  1003.2,  sections 2.8 (Regular Expression Notation)
  346.        and B.5 (C Binding for Regular Expression Matching).
  347.  
  348. DDIIAAGGNNOOSSTTIICCSS
  349.        Non-zero error codes from _r_e_g_c_o_m_p and _r_e_g_e_x_e_c include  the
  350.        following:
  351.  
  352.        REG_NOMATCH    regexec() failed to match
  353.        REG_BADPAT     invalid regular expression
  354.        REG_ECOLLATE   invalid collating element
  355.        REG_ECTYPE     invalid character class
  356.        REG_EESCAPE    \ applied to unescapable character
  357.        REG_ESUBREG    invalid backreference number
  358.        REG_EBRACK     brackets [ ] not balanced
  359.        REG_EPAREN     parentheses ( ) not balanced
  360.        REG_EBRACE     braces { } not balanced
  361.        REG_BADBR      invalid repetition count(s) in { }
  362.        REG_ERANGE     invalid character range in [ ]
  363.        REG_ESPACE     ran out of memory
  364.        REG_BADRPT     ?, *, or + operand invalid
  365.        REG_EMPTY      empty (sub)expression
  366.        REG_ASSERT     ``can't happen''--you found a bug
  367.        REG_INVARG     invalid argument, e.g. negative-length string
  368.  
  369. HHIISSTTOORRYY
  370.        Originally  written  by Henry Spencer.  Altered for inclu-
  371.        sion in the 4.4BSD distribution.
  372.  
  373. BBUUGGSS
  374.        This is an  alpha  release  with  known  defects.   Please
  375.        report problems.
  376.  
  377.        There  is one known functionality bug.  The implementation
  378.        of  internationalization  is  incomplete:  the  locale  is
  379.        always  assumed  to be the default one of 1003.2, and only
  380.        the collating elements etc. of that locale are  available.
  381.  
  382.        The  back-reference code is subtle and doubts linger about
  383.        its correctness in complex cases.
  384.  
  385.        _R_e_g_e_x_e_c performance is poor.  This will improve with later
  386.        releases.  _N_m_a_t_c_h exceeding 0 is expensive; _n_m_a_t_c_h exceed-
  387.        ing 1 is worse.  _R_e_g_e_x_e_c is largely insensitive to RE com-
  388.        plexity  _e_x_c_e_p_t  that back references are massively expen-
  389.        sive.  RE length does matter; in particular,  there  is  a
  390.        strong  speed  bonus  for keeping RE length under about 30
  391.  
  392.  
  393.  
  394.                           March 20, 1994                        6
  395.  
  396.  
  397.  
  398.  
  399.  
  400. REGEX(3)                                                 REGEX(3)
  401.  
  402.  
  403.        characters, with most special characters counting  roughly
  404.        double.
  405.  
  406.        _R_e_g_c_o_m_p implements bounded repetitions by macro expansion,
  407.        which is costly in time and space if counts are  large  or
  408.        bounded   repetitions   are  nested.   An  RE  like,  say,
  409.        `((((a{1,100}){1,100}){1,100}){1,100}){1,100}' will (even-
  410.        tually) run almost any existing machine out of swap space.
  411.  
  412.        There are suspected  problems  with  response  to  obscure
  413.        error  conditions.   Notably,  certain  kinds  of internal
  414.        overflow, produced only by truly enormous REs or by multi-
  415.        ply  nested  bounded repetitions, are probably not handled
  416.        well.
  417.  
  418.        Due to a mistake in 1003.2, things like  `a)b'  are  legal
  419.        REs  because  `)' is a special character only in the pres-
  420.        ence of a previous unmatched `('.   This  can't  be  fixed
  421.        until the spec is fixed.
  422.  
  423.        The  standard's  definition  of  back references is vague.
  424.        For example, does `a\(\(b\)*\2\)*d' match `abbbd'?   Until
  425.        the  standard  is clarified, behavior in such cases should
  426.        not be relied on.
  427.  
  428.        The implementation of word-boundary matching is a bit of a
  429.        kludge, and bugs may lurk in combinations of word-boundary
  430.        matching and anchoring.
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.                           March 20, 1994                        7
  461.  
  462.  
  463.